golang.org/x/net/http2.gzipReader.zerr (field)
11 uses
golang.org/x/net/http2 (current package)
transport.go#L2759: zerr error // sticky gzip reader init error or sentinel value to detect concurrent read and read after close
transport.go#L2793: if gz.zerr != nil {
transport.go#L2794: return nil, gz.zerr
transport.go#L2797: gz.zr, gz.zerr = gzipPoolGet(gz.body)
transport.go#L2798: if gz.zerr != nil {
transport.go#L2799: return nil, gz.zerr
transport.go#L2803: gz.zr, gz.zerr = nil, errConcurrentReadOnResBody
transport.go#L2811: if gz.zerr == errConcurrentReadOnResBody {
transport.go#L2812: gz.zr, gz.zerr = zr, nil
transport.go#L2823: if gz.zerr == nil && gz.zr != nil {
transport.go#L2827: gz.zerr = fs.ErrClosed
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)